Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 19, 2026

Updates the requirements on ipykernel, protobuf, chromadb, sentence-transformers, graphrag-sdk, llama-index, llama-index-core, llama-index-vector-stores-mongodb, llama-index-llms-openai, crawl4ai, google-auth-httplib2, fastapi, litellm, websockets, pandas, pytest, pytest-cov, pytest-asyncio, dirty-equals, mkdocs-material, mkdocstrings[python], mkdocs-git-revision-date-localized-plugin, typer, mkdocs-macros-plugin, mkdocs-glightbox, pyyaml, termcolor, nbclient, mypy, ruff, pre-commit and uv to permit the latest version.
Updates ipykernel from 6.30.1 to 7.1.0

Release notes

Sourced from ipykernel's releases.

v7.1.0

7.1.0

IPykernel 7.1.0 fixes an issue where display outputs such as Matplotlib plots were not included when using %notebook magic to save sessions as .ipynb files (#1435). This is enabled using the traitlet ZMQDisplayPublisher.store_display_history which defaults to the previous behaviour of False. This is a minor release rather than a patch release due to the addition of the new traitlet.

Output from threads is restored to the pre-6.29 behavior by default (route to latest cell, unless get_ipython().set_parent() is called explicitly from the thread. If it is called, output from that thread will continue to be routed to the same cell). This behavior is now opt-in, instead of unconditional (#1451).

This release also fixes bugs that were introduced into the 7.x branch relating to Matplotlib plots in separate windows not being displayed correctly (#1458), kernels launched in new threads failing asserts (#1455), and ContextVars persisting between cells (#1462). There is also a fix for keyboard interrupts on Windows (#1434).

(Full Changelog)

Enhancements made

Bugs fixed

Maintenance and upkeep improvements

Contributors to this release

(GitHub contributors page for this release)

@​Carreau | @​Darshan808 | @​dfalbel | @​ianthomas23 | @​krassowski | @​lumberbot-app | @​minrk | @​ptosco

v7.0.1

7.0.1

IPykernel 7.0.1 is a bug fix release to support CPython 3.14.

(Full Changelog)

Bugs fixed

... (truncated)

Changelog

Sourced from ipykernel's changelog.

7.1.0

IPykernel 7.1.0 fixes an issue where display outputs such as Matplotlib plots were not included when using %notebook magic to save sessions as .ipynb files (#1435). This is enabled using the traitlet ZMQDisplayPublisher.store_display_history which defaults to the previous behaviour of False. This is a minor release rather than a patch release due to the addition of the new traitlet.

Output from threads is restored to the pre-6.29 behavior by default (route to latest cell, unless get_ipython().set_parent() is called explicitly from the thread. If it is called, output from that thread will continue to be routed to the same cell). This behavior is now opt-in, instead of unconditional (#1451).

This release also fixes bugs that were introduced into the 7.x branch relating to Matplotlib plots in separate windows not being displayed correctly (#1458), kernels launched in new threads failing asserts (#1455), and ContextVars persisting between cells (#1462). There is also a fix for keyboard interrupts on Windows (#1434).

(Full Changelog)

Enhancements made

Bugs fixed

Maintenance and upkeep improvements

Contributors to this release

(GitHub contributors page for this release)

@​Carreau | @​Darshan808 | @​dfalbel | @​ianthomas23 | @​krassowski | @​lumberbot-app | @​minrk | @​ptosco

7.0.1

IPykernel 7.0.1 is a bug fix release to support CPython 3.14.

(Full Changelog)

Bugs fixed

Maintenance and upkeep improvements

Documentation improvements

... (truncated)

Commits
  • 39eaf96 Publish 7.1.0
  • 6f61a68 test that matplotlib event loop integration is responsive (#1463)
  • 8446e02 Fix KeyboardInterrupt on Windows by manually resetting interrupt event (#1434)
  • dd1e094 update pre-commit and related (#1465)
  • 95f2451 fix ContextVar persistence across cells (#1462)
  • c56a7aa Fix matplotlib eventloops (#1458)
  • c7af34c Refer to kernel laucnhing thread instead of assuming the main thread (#1455)
  • 7193d14 Fix routing of background thread output when no parent is set explicitly (#1451)
  • b8f5dfc Store display outputs in history for %notebook magic (#1435)
  • 93f11db update tests for 3.14 (#1453)
  • Additional commits viewable in compare view

Updates protobuf from 6.32.0 to 6.33.4

Commits

Updates chromadb to 1.4.1

Release notes

Sourced from chromadb's releases.

1.4.1

Version: 1.4.1 Git ref: refs/tags/1.4.1 Build Date: 2026-01-14T19:19 PIP Package: chroma-1.4.1.tar.gz Github Container Registry Image: :1.4.1 DockerHub Image: :1.4.1

What's Changed

... (truncated)

Commits

Updates sentence-transformers to 5.2.0

Release notes

Sourced from sentence-transformers's releases.

v5.2.0 - CrossEncoder multi-processing, multilingual NanoBEIR evaluators, similarity score in mine_hard_negatives, Transformers v5 support

This minor release introduces multi-processing for CrossEncoder (rerankers), multilingual NanoBEIR evaluators, similarity score outputs in mine_hard_negatives, Transformers v5 support, Python 3.9 deprecations, and more.

Install this version with

# Training + Inference
pip install sentence-transformers[train]==5.2.0
Inference only, use one of:
pip install sentence-transformers==5.2.0
pip install sentence-transformers[onnx-gpu]==5.2.0
pip install sentence-transformers[onnx]==5.2.0
pip install sentence-transformers[openvino]==5.2.0

CrossEncoder Multi-processing

The CrossEncoder class now supports multiprocessing for faster inference on CPU and multi-GPU setups. This brings CrossEncoder functionality in line with the existing multiprocessing capabilities of SentenceTransformer models, allowing you to use multiple CPU cores or GPUs to speed up both the predict and rank methods when processing large batches of sentence pairs.

The implementation introduces these new methods, mirroring the SentenceTransformer approach:

  • start_multi_process_pool() - Initialize a pool of worker processes
  • stop_multi_process_pool() - Clean up the worker pool

Usage is straightforward with the new pool parameter:

from sentence_transformers.cross_encoder import CrossEncoder
def main():
model = CrossEncoder('cross-encoder/ms-marco-MiniLM-L6-v2')
# Start a pool of workers
pool = model.start_multi_process_pool()
Use the pool for faster inference
scores = model.predict(sentence_pairs, pool=pool)
rankings = model.rank(query, documents, pool=pool)
Clean up when done
model.stop_multi_process_pool(pool)

if name == "main":
main()

Or simply pass a list of devices to device to have predict and rank automatically create a pool behind the scenes.

from sentence_transformers.cross_encoder import CrossEncoder
</tr></table>

... (truncated)

Commits
  • d4d70de Release v5.2.0
  • b16248c docs: add release notes summary for v5.2 on main page (#3592)
  • 2571f24 docs: update NanoBEIR collection links and descriptions for evaluators (#3591)
  • 32cb5de Mine hard negatives: optionally output similarity scores (#3506)
  • 9f9ad08 Extend NanoBEIR evaluators to support custom NanoBEIR datasets (#3583)
  • 21dfa69 feat/deps: make Pillow an optional dependency (#3589)
  • 67ff0fe Skip test_train_stsb tests; triggers rate limit too often (#3590)
  • 4cb5cdc [deps] Use optimum-onnx now that both optimum-onnx and optimum-intel can us...
  • 3f80d1c [feat] add multiprocessing support for Cross Encoder (#3580)
  • f9724ff [feat] Allow transformers v5.0, add CI for transformers <v5 and >=v5 (#3586)
  • Additional commits viewable in compare view

Updates graphrag-sdk from 0.8.0 to 0.8.2

Release notes

Sourced from graphrag-sdk's releases.

v0.8.1

What's Changed

New Contributors

Full Changelog: FalkorDB/GraphRAG-SDK@v0.8.0...v0.8.1

Commits

Updates llama-index to 0.14.12

Release notes

Sourced from llama-index's releases.

v0.14.12

Release Notes

[2025-12-30]

llama-index-callbacks-agentops [0.4.1]

  • Feat/async tool spec support (#20338)

llama-index-core [0.14.12]

  • Feat/async tool spec support (#20338)
  • Improve MockFunctionCallingLLM (#20356)
  • fix(openai): sanitize generic Pydantic model schema names (#20371)
  • Element node parser (#20399)
  • improve llama dev logging (#20411)
  • test(node_parser): add unit tests for Java CodeSplitter (#20423)
  • fix: crash in log_vector_store_query_result when result.ids is None (#20427)

llama-index-embeddings-litellm [0.4.1]

  • Add docstring to LiteLLM embedding class (#20336)

llama-index-embeddings-ollama [0.8.5]

  • feat(llama-index-embeddings-ollama): Add keep_alive parameter (#20395)
  • docs: improve Ollama embeddings README with comprehensive documentation (#20414)

llama-index-embeddings-voyageai [0.5.2]

  • Voyage multimodal 35 (#20398)

llama-index-graph-stores-nebula [0.5.1]

  • feat(nebula): add MENTIONS edge to property graph store (#20401)

llama-index-llms-aibadgr [0.1.0]

  • feat(llama-index-llms-aibadgr): Add AI Badgr OpenAI‑compatible LLM integration (#20365)

llama-index-llms-anthropic [0.10.4]

  • add back haiku-3 support (#20408)

llama-index-llms-bedrock-converse [0.12.3]

  • fix: bedrock converse thinking block issue (#20355)

llama-index-llms-google-genai [0.8.3]

... (truncated)

Changelog

Sourced from llama-index's changelog.

llama-index-core [0.14.12]

  • Feat/async tool spec support (#20338)
  • Improve MockFunctionCallingLLM (#20356)
  • fix(openai): sanitize generic Pydantic model schema names (#20371)
  • Element node parser (#20399)
  • improve llama dev logging (#20411)
  • test(node_parser): add unit tests for Java CodeSplitter (#20423)
  • fix: crash in log_vector_store_query_result when result.ids is None (#20427)

llama-index-embeddings-litellm [0.4.1]

  • Add docstring to LiteLLM embedding class (#20336)

llama-index-embeddings-ollama [0.8.5]

  • feat(llama-index-embeddings-ollama): Add keep_alive parameter (#20395)
  • docs: improve Ollama embeddings README with comprehensive documentation (#20414)

llama-index-embeddings-voyageai [0.5.2]

  • Voyage multimodal 35 (#20398)

llama-index-graph-stores-nebula [0.5.1]

  • feat(nebula): add MENTIONS edge to property graph store (#20401)

llama-index-llms-aibadgr [0.1.0]

  • feat(llama-index-llms-aibadgr): Add AI Badgr OpenAI‑compatible LLM integration (#20365)

llama-index-llms-anthropic [0.10.4]

  • add back haiku-3 support (#20408)

llama-index-llms-bedrock-converse [0.12.3]

  • fix: bedrock converse thinking block issue (#20355)

llama-index-llms-google-genai [0.8.3]

  • Switch use_file_api to Flexible file_mode; Improve File Upload Handling & Bump google-genai to v1.52.0 (#20347)
  • Fix missing role from Google-GenAI (#20357)
  • Add signature index fix (#20362)
  • Add positional thought signature for thoughts (#20418)

llama-index-llms-ollama [0.9.1]

  • feature: pydantic no longer complains if you pass 'low', 'medium', 'h… (#20394)

... (truncated)

Commits

Updates llama-index-core to 0.14.12

Release notes

Sourced from llama-index-core's releases.

v0.14.12

Release Notes

[2025-12-30]

llama-index-callbacks-agentops [0.4.1]

  • Feat/async tool spec support (#20338)

llama-index-core [0.14.12]

  • Feat/async tool spec support (#20338)
  • Improve MockFunctionCallingLLM (#20356)
  • fix(openai): sanitize generic Pydantic model schema names (#20371)
  • Element node parser (#20399)
  • improve llama dev logging (#20411)
  • test(node_parser): add unit tests for Java CodeSplitter (#20423)
  • fix: crash in log_vector_store_query_result when result.ids is None (#20427)

llama-index-embeddings-litellm [0.4.1]

  • Add docstring to LiteLLM embedding class (#20336)

llama-index-embeddings-ollama [0.8.5]

  • feat(llama-index-embeddings-ollama): Add keep_alive parameter (#20395)
  • docs: improve Ollama embeddings README with comprehensive documentation (#20414)

llama-index-embeddings-voyageai [0.5.2]

  • Voyage multimodal 35 (#20398)

llama-index-graph-stores-nebula [0.5.1]

  • feat(nebula): add MENTIONS edge to property graph store (#20401)

llama-index-llms-aibadgr [0.1.0]

  • feat(llama-index-llms-aibadgr): Add AI Badgr OpenAI‑compatible LLM integration (#20365)

llama-index-llms-anthropic [0.10.4]

  • add back haiku-3 support (#20408)

llama-index-llms-bedrock-converse [0.12.3]

  • fix: bedrock converse thinking block issue (#20355)

llama-index-llms-google-genai [0.8.3]

... (truncated)

Changelog

Sourced from llama-index-core's changelog.

llama-index-core [0.14.12]

  • Feat/async tool spec support (#20338)
  • Improve MockFunctionCallingLLM (#20356)
  • fix(openai): sanitize generic Pydantic model schema names (#20371)
  • Element node parser (#20399)
  • improve llama dev logging (#20411)
  • test(node_parser): add unit tests for Java CodeSplitter (#20423)
  • fix: crash in log_vector_store_query_result when result.ids is None (#20427)

llama-index-embeddings-litellm [0.4.1]

  • Add docstring to LiteLLM embedding class (#20336)

llama-index-embeddings-ollama [0.8.5]

  • feat(llama-index-embeddings-ollama): Add keep_alive parameter (#20395)
  • docs: improve Ollama embeddings README with comprehensive documentation (#20414)

llama-index-embeddings-voyageai [0.5.2]

  • Voyage multimodal 35 (#20398)

llama-index-graph-stores-nebula [0.5.1]

  • feat(nebula): add MENTIONS edge to property graph store (#20401)

llama-index-llms-aibadgr [0.1.0]

  • feat(llama-index-llms-aibadgr): Add AI Badgr OpenAI‑compatible LLM integration (#20365)

llama-index-llms-anthropic [0.10.4]

  • add back haiku-3 support (#20408)

llama-index-llms-bedrock-converse [0.12.3]

  • fix: bedrock converse thinking block issue (#20355)

llama-index-llms-google-genai [0.8.3]

  • Switch use_file_api to Flexible file_mode; Improve File Upload Handling & Bump google-genai to v1.52.0 (#20347)
  • Fix missing role from Google-GenAI (#20357)
  • Add signature index fix (#20362)
  • Add positional thought signature for thoughts (#20418)

llama-index-llms-ollama [0.9.1]

  • feature: pydantic no longer complains if you pass 'low', 'medium', 'h… (#20394)

... (truncated)

Commits

Updates llama-index-vector-stores-mongodb to 0.9.1

Updates llama-index-llms-openai to 0.6.13

Updates crawl4ai to 0.8.0

Release notes

Sourced from crawl4ai's releases.

Release v0.8.0

🎉 Crawl4AI v0.8.0 Released!

📦 Installation

PyPI:

pip install crawl4ai==0.8.0

Docker:

docker pull unclecode/crawl4ai:0.8.0
docker pull unclecode/crawl4ai:latest

Note: Docker images are being built and will be available shortly. Check the Docker Release workflow for build status.

📝 What's Changed

See CHANGELOG.md for details.

Changelog

Sourced from crawl4ai's changelog.

[0.8.0] - 2026-01-12

Security

  • 🔒 CRITICAL: Remote Code Execution Fix: Removed __import__ from hook allowed builtins
    • Prevents arbitrary module imports in user-provided hook code
    • Hooks now disabled by default via CRAWL4AI_HOOKS_ENABLED environment variable
    • Credit: Neo by ProjectDiscovery
  • 🔒 HIGH: Local File Inclusion Fix: Added URL scheme validation to Docker API endpoints
    • Blocks file://, javascript:, data: URLs on /execute_js, /screenshot, /pdf, /html
    • Only allows http://, https://, and raw: URLs
    • Credit: Neo by ProjectDiscovery

Breaking Changes

  • Docker API: Hooks disabled by default: Set CRAWL4AI_HOOKS_ENABLED=true to enable
  • Docker API: file:// URLs blocked: Use Python library directly for local file processing

Added

  • 🚀 init_scripts for BrowserConfig: Pre-page-load JavaScript injection for stealth evasions
  • 🔄 CDP Connection Improvements: WebSocket URL support, proper cleanup, browser reuse
  • 💾 Crash Recovery for Deep Crawl: resume_state and on_state_change for BFS/DFS/Best-First strategies
  • 📄 PDF/MHTML for raw:/file:// URLs: Generate PDFs and MHTML from cached HTML content
  • 📸 Screenshots for raw:/file:// URLs: Render cached HTML and capture screenshots
  • 🔗 base_url Parameter: Proper URL resolution for raw: HTML processing
  • ⚡ Prefetch Mode: Two-phase deep crawling with fast link extraction
  • 🔀 Enhanced Proxy Support: Improved proxy rotation and sticky sessions
  • 🌐 HTTP Strategy Proxy Support: Non-browser crawler now supports proxies
  • 🖥️ Browser Pipeline for raw:/file://: New process_in_browser parameter
  • 📋 Smart TTL Cache for Sitemap Seeder: cache_ttl_hours and validate_sitemap_lastmod parameters
  • 📚 Security Documentation: Added SECURITY.md with vulnerability reporting guidelines

Fixed

  • raw: URL Parsing: Fixed truncation at # character (CSS color codes like #eee)
  • Caching System: Various improvements to cache validation and persistence

Documentation

  • Multi-sample schema generation section
  • URL seeder smart TTL cache parameters
  • v0.8.0 migration guide
  • Security policy and disclosure process

[Unreleased]

Added

  • 🔒 HTTPS Preservation for Internal Links: New preserve_https_for_internal_links configuration flag
    • Maintains HTTPS scheme for internal links even when servers redirect to HTTP
    • Prevents security downgrades during deep crawling
    • Useful for security-conscious crawling and sites supporting both protocols
    • Fully backward compatible with opt-in flag (default: False)
    • Fixes issue #1410 where HTTPS URLs were being downgraded to HTTP

... (truncated)

Commits
  • a5354f2 Merge branch 'develop' into release/v0.8.0
  • 6090629 Fix: Enable litellm.drop_params for O-series/GPT-5 model compatibility
  • a00da65 Add async agenerate_schema method for schema generation
  • 177e298 Update security researcher acknowledgment with a hyperlink for Neo by Project...
  • f09146c Release v0.8.0: The v0.8.0 Update
  • 315eae9 Add examples for deep crawl crash recovery and prefetch mode in documentation
  • 530cde3 Add release notes for v0.8.0, detailing breaking changes, security fixes, new...
  • 122b4fe Add release notes for v0.7.9, detailing breaking changes, security fixes, new...
  • acfab80 Enhance authentication flow by implementing JWT token retrieval and adding au...
  • f24396c Fix critical RCE and LFI vulnerabilities in Docker API deployment
  • Additional commits viewable in compare view

Updates google-auth-httplib2 to 0.3.0

Release notes

Sourced from google-auth-httplib2's releases.

google-auth-httplib2 0.3.0

0.3.0 (2025-12-12)

Features

  • Add support for Python 3.14 (

Updates the requirements on [ipykernel](https://github.com/ipython/ipykernel), [protobuf](https://github.com/protocolbuffers/protobuf), [chromadb](https://github.com/chroma-core/chroma), [sentence-transformers](https://github.com/huggingface/sentence-transformers), [graphrag-sdk](https://github.com/FalkorDB/GraphRAG-SDK), [llama-index](https://github.com/run-llama/llama_index), [llama-index-core](https://github.com/run-llama/llama_index), llama-index-vector-stores-mongodb, llama-index-llms-openai, [crawl4ai](https://github.com/unclecode/crawl4ai), [google-auth-httplib2](https://github.com/GoogleCloudPlatform/google-auth-library-python-httplib2), [fastapi](https://github.com/fastapi/fastapi), [litellm](https://github.com/BerriAI/litellm), [websockets](https://github.com/python-websockets/websockets), [pandas](https://github.com/pandas-dev/pandas), [pytest](https://github.com/pytest-dev/pytest), [pytest-cov](https://github.com/pytest-dev/pytest-cov), [pytest-asyncio](https://github.com/pytest-dev/pytest-asyncio), [dirty-equals](https://github.com/samuelcolvin/dirty-equals), [mkdocs-material](https://github.com/squidfunk/mkdocs-material), [mkdocstrings[python]](https://github.com/mkdocstrings/mkdocstrings), [mkdocs-git-revision-date-localized-plugin](https://github.com/timvink/mkdocs-git-revision-date-localized-plugin), [typer](https://github.com/fastapi/typer), [mkdocs-macros-plugin](https://github.com/fralau/mkdocs_macros_plugin), [mkdocs-glightbox](https://github.com/blueswen/mkdocs-glightbox), [pyyaml](https://github.com/yaml/pyyaml), [termcolor](https://github.com/termcolor/termcolor), [nbclient](https://github.com/jupyter/nbclient), [mypy](https://github.com/python/mypy), [ruff](https://github.com/astral-sh/ruff), [pre-commit](https://github.com/pre-commit/pre-commit) and [uv](https://github.com/astral-sh/uv) to permit the latest version.

Updates `ipykernel` from 6.30.1 to 7.1.0
- [Release notes](https://github.com/ipython/ipykernel/releases)
- [Changelog](https://github.com/ipython/ipykernel/blob/main/CHANGELOG.md)
- [Commits](ipython/ipykernel@v6.30.1...v7.1.0)

Updates `protobuf` from 6.32.0 to 6.33.4
- [Release notes](https://github.com/protocolbuffers/protobuf/releases)
- [Commits](https://github.com/protocolbuffers/protobuf/commits)

Updates `chromadb` to 1.4.1
- [Release notes](https://github.com/chroma-core/chroma/releases)
- [Changelog](https://github.com/chroma-core/chroma/blob/main/RELEASE_PROCESS.md)
- [Commits](chroma-core/chroma@1.3.0...1.4.1)

Updates `sentence-transformers` to 5.2.0
- [Release notes](https://github.com/huggingface/sentence-transformers/releases)
- [Commits](huggingface/sentence-transformers@v3.0.0...v5.2.0)

Updates `graphrag-sdk` from 0.8.0 to 0.8.2
- [Release notes](https://github.com/FalkorDB/GraphRAG-SDK/releases)
- [Commits](https://github.com/FalkorDB/GraphRAG-SDK/commits)

Updates `llama-index` to 0.14.12
- [Release notes](https://github.com/run-llama/llama_index/releases)
- [Changelog](https://github.com/run-llama/llama_index/blob/main/CHANGELOG.md)
- [Commits](run-llama/llama_index@v0.12.0...v0.14.12)

Updates `llama-index-core` to 0.14.12
- [Release notes](https://github.com/run-llama/llama_index/releases)
- [Changelog](https://github.com/run-llama/llama_index/blob/main/CHANGELOG.md)
- [Commits](run-llama/llama_index@v0.12.0...v0.14.12)

Updates `llama-index-vector-stores-mongodb` to 0.9.1

Updates `llama-index-llms-openai` to 0.6.13

Updates `crawl4ai` to 0.8.0
- [Release notes](https://github.com/unclecode/crawl4ai/releases)
- [Changelog](https://github.com/unclecode/crawl4ai/blob/main/CHANGELOG.md)
- [Commits](unclecode/crawl4ai@v0.5.0.post1...v0.8.0)

Updates `google-auth-httplib2` to 0.3.0
- [Release notes](https://github.com/GoogleCloudPlatform/google-auth-library-python-httplib2/releases)
- [Changelog](https://github.com/googleapis/google-auth-library-python-httplib2/blob/main/CHANGELOG.md)
- [Commits](googleapis/google-auth-library-python-httplib2@v0.2.0...v0.3.0)

Updates `fastapi` from 0.116.1 to 0.128.0
- [Release notes](https://github.com/fastapi/fastapi/releases)
- [Commits](fastapi/fastapi@0.116.1...0.128.0)

Updates `litellm` to 1.81.0
- [Release notes](https://github.com/BerriAI/litellm/releases)
- [Commits](https://github.com/BerriAI/litellm/commits)

Updates `websockets` to 16.0
- [Release notes](https://github.com/python-websockets/websockets/releases)
- [Commits](python-websockets/websockets@14.0...16.0)

Updates `pandas` from 2.3.2 to 2.3.3
- [Release notes](https://github.com/pandas-dev/pandas/releases)
- [Commits](pandas-dev/pandas@v2.3.2...v2.3.3)

Updates `pytest` from 8.4.2 to 9.0.2
- [Release notes](https://github.com/pytest-dev/pytest/releases)
- [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst)
- [Commits](pytest-dev/pytest@8.4.2...9.0.2)

Updates `pytest-cov` from 6.3.0 to 7.0.0
- [Changelog](https://github.com/pytest-dev/pytest-cov/blob/master/CHANGELOG.rst)
- [Commits](pytest-dev/pytest-cov@v6.3.0...v7.0.0)

Updates `pytest-asyncio` from 1.1.0 to 1.3.0
- [Release notes](https://github.com/pytest-dev/pytest-asyncio/releases)
- [Commits](pytest-dev/pytest-asyncio@v1.1.0...v1.3.0)

Updates `dirty-equals` from 0.9.0 to 0.11
- [Release notes](https://github.com/samuelcolvin/dirty-equals/releases)
- [Commits](samuelcolvin/dirty-equals@v0.9.0...v0.11.0)

Updates `mkdocs-material` from 9.6.19 to 9.7.1
- [Release notes](https://github.com/squidfunk/mkdocs-material/releases)
- [Changelog](https://github.com/squidfunk/mkdocs-material/blob/master/CHANGELOG)
- [Commits](squidfunk/mkdocs-material@9.6.19...9.7.1)

Updates `mkdocstrings[python]` from 0.30.0 to 1.0.0
- [Release notes](https://github.com/mkdocstrings/mkdocstrings/releases)
- [Changelog](https://github.com/mkdocstrings/mkdocstrings/blob/main/CHANGELOG.md)
- [Commits](mkdocstrings/mkdocstrings@0.30.0...1.0.0)

Updates `mkdocs-git-revision-date-localized-plugin` from 1.4.7 to 1.5.0
- [Release notes](https://github.com/timvink/mkdocs-git-revision-date-localized-plugin/releases)
- [Commits](timvink/mkdocs-git-revision-date-localized-plugin@v1.4.7...v1.5.0)

Updates `typer` from 0.17.4 to 0.21.1
- [Release notes](https://github.com/fastapi/typer/releases)
- [Changelog](https://github.com/fastapi/typer/blob/master/docs/release-notes.md)
- [Commits](fastapi/typer@0.17.4...0.21.1)

Updates `mkdocs-macros-plugin` from 1.3.9 to 1.5.0
- [Release notes](https://github.com/fralau/mkdocs_macros_plugin/releases)
- [Changelog](https://github.com/fralau/mkdocs-macros-plugin/blob/master/CHANGELOG.md)
- [Commits](fralau/mkdocs-macros-plugin@v1.3.9...v1.5.0)

Updates `mkdocs-glightbox` from 0.5.1 to 0.5.2
- [Release notes](https://github.com/blueswen/mkdocs-glightbox/releases)
- [Changelog](https://github.com/blueswen/mkdocs-glightbox/blob/main/CHANGELOG)
- [Commits](blueswen/mkdocs-glightbox@v0.5.1...v0.5.2)

Updates `pyyaml` from 6.0.2 to 6.0.3
- [Release notes](https://github.com/yaml/pyyaml/releases)
- [Changelog](https://github.com/yaml/pyyaml/blob/6.0.3/CHANGES)
- [Commits](yaml/pyyaml@6.0.2...6.0.3)

Updates `termcolor` from 3.1.0 to 3.3.0
- [Release notes](https://github.com/termcolor/termcolor/releases)
- [Changelog](https://github.com/termcolor/termcolor/blob/main/CHANGES.md)
- [Commits](termcolor/termcolor@3.1.0...3.3.0)

Updates `nbclient` from 0.10.2 to 0.10.4
- [Release notes](https://github.com/jupyter/nbclient/releases)
- [Changelog](https://github.com/jupyter/nbclient/blob/main/CHANGELOG.md)
- [Commits](jupyter/nbclient@v0.10.2...v0.10.4)

Updates `mypy` from 1.17.1 to 1.19.1
- [Changelog](https://github.com/python/mypy/blob/master/CHANGELOG.md)
- [Commits](python/mypy@v1.17.1...v1.19.1)

Updates `ruff` from 0.12.12 to 0.14.13
- [Release notes](https://github.com/astral-sh/ruff/releases)
- [Changelog](https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md)
- [Commits](astral-sh/ruff@0.12.12...0.14.13)

Updates `pre-commit` from 4.3.0 to 4.5.1
- [Release notes](https://github.com/pre-commit/pre-commit/releases)
- [Changelog](https://github.com/pre-commit/pre-commit/blob/main/CHANGELOG.md)
- [Commits](pre-commit/pre-commit@v4.3.0...v4.5.1)

Updates `uv` from 0.8.15 to 0.9.26
- [Release notes](https://github.com/astral-sh/uv/releases)
- [Changelog](https://github.com/astral-sh/uv/blob/main/CHANGELOG.md)
- [Commits](astral-sh/uv@0.8.15...0.9.26)

---
updated-dependencies:
- dependency-name: ipykernel
  dependency-version: 7.1.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: pip
- dependency-name: protobuf
  dependency-version: 6.33.4
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: pip
- dependency-name: chromadb
  dependency-version: 1.4.1
  dependency-type: direct:development
  dependency-group: pip
- dependency-name: sentence-transformers
  dependency-version: 5.2.0
  dependency-type: direct:development
  dependency-group: pip
- dependency-name: graphrag-sdk
  dependency-version: 0.8.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: pip
- dependency-name: llama-index
  dependency-version: 0.14.12
  dependency-type: direct:development
  dependency-group: pip
- dependency-name: llama-index-core
  dependency-version: 0.14.12
  dependency-type: direct:development
  dependency-group: pip
- dependency-name: llama-index-vector-stores-mongodb
  dependency-version: 0.9.1
  dependency-type: direct:development
  dependency-group: pip
- dependency-name: llama-index-llms-openai
  dependency-version: 0.6.13
  dependency-type: direct:development
  dependency-group: pip
- dependency-name: crawl4ai
  dependency-version: 0.8.0
  dependency-type: direct:development
  dependency-group: pip
- dependency-name: google-auth-httplib2
  dependency-version: 0.3.0
  dependency-type: direct:development
  dependency-group: pip
- dependency-name: fastapi
  dependency-version: 0.128.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: pip
- dependency-name: litellm
  dependency-version: 1.81.0
  dependency-type: direct:development
  dependency-group: pip
- dependency-name: websockets
  dependency-version: '16.0'
  dependency-type: direct:development
  dependency-group: pip
- dependency-name: pandas
  dependency-version: 2.3.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: pip
- dependency-name: pytest
  dependency-version: 9.0.2
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: pip
- dependency-name: pytest-cov
  dependency-version: 7.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: pip
- dependency-name: pytest-asyncio
  dependency-version: 1.3.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: pip
- dependency-name: dirty-equals
  dependency-version: '0.11'
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: pip
- dependency-name: mkdocs-material
  dependency-version: 9.7.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: pip
- dependency-name: mkdocstrings[python]
  dependency-version: 1.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: pip
- dependency-name: mkdocs-git-revision-date-localized-plugin
  dependency-version: 1.5.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: pip
- dependency-name: typer
  dependency-version: 0.21.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: pip
- dependency-name: mkdocs-macros-plugin
  dependency-version: 1.5.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: pip
- dependency-name: mkdocs-glightbox
  dependency-version: 0.5.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: pip
- dependency-name: pyyaml
  dependency-version: 6.0.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: pip
- dependency-name: termcolor
  dependency-version: 3.3.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: pip
- dependency-name: nbclient
  dependency-version: 0.10.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: pip
- dependency-name: mypy
  dependency-version: 1.19.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: pip
- dependency-name: ruff
  dependency-version: 0.14.13
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: pip
- dependency-name: pre-commit
  dependency-version: 4.5.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: pip
- dependency-name: uv
  dependency-version: 0.9.26
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: pip
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Jan 19, 2026
@joggrbot
Copy link
Contributor

joggrbot bot commented Jan 19, 2026

📝 Documentation Analysis

All docs are up to date! 🎉


✅ Latest commit analyzed: 006dcaa | Powered by Joggr

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file python Pull requests that update Python code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants